2007-11-14 Michael Natterer <mitch@imendio.com>
* tests/testbbox.c
* tests/testframe.c: use g_object_ref/unref instead of deprecated
functions.
svn path=/trunk/; revision=18990
+2007-11-14 Michael Natterer <mitch@imendio.com>
+
+ * tests/testbbox.c
+ * tests/testframe.c: use g_object_ref/unref instead of deprecated
+ functions.
+
2007-11-14 Michael Natterer <mitch@imendio.com>
* gtk/gtkstyle.c (gtk_default_draw_focus): cast pointers to fix
GtkWidget *old_parent,
GtkWidget *new_parent)
{
- gtk_widget_ref (widget);
+ g_object_ref (widget);
gtk_container_remove (GTK_CONTAINER (old_parent), widget);
gtk_container_add (GTK_CONTAINER (new_parent), widget);
- gtk_widget_unref (widget);
+ g_object_unref (widget);
}
static void
rcstyle->xthickness = GTK_WIDGET (frame)->style->xthickness;
rcstyle->ythickness = gtk_spin_button_get_value (spin);
gtk_widget_modify_style (frame, rcstyle);
- gtk_rc_style_unref (rcstyle);
+
+ g_object_unref (rcstyle);
}
static void
rcstyle->ythickness = GTK_WIDGET (frame)->style->ythickness;
gtk_widget_modify_style (frame, rcstyle);
- gtk_rc_style_unref (rcstyle);
+ g_object_unref (rcstyle);
}
/* Function to normalize rounding errors in FP arithmetic to